added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / CSWin7TaskbarAppID / MainForm.Designer.cs
blob39685dea79f0ca743fa78ba30dc17a03a6bb5df4
1 namespace CSWin7TaskbarAppID
3 partial class MainForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.openSubFormButton = new System.Windows.Forms.Button();
32 this.resetSubFormAppIDButton = new System.Windows.Forms.Button();
33 this.setSubFormAppIDButton = new System.Windows.Forms.Button();
34 this.groupBox1 = new System.Windows.Forms.GroupBox();
35 this.groupBox1.SuspendLayout();
36 this.SuspendLayout();
37 //
38 // openSubFormButton
39 //
40 this.openSubFormButton.Location = new System.Drawing.Point(69, 33);
41 this.openSubFormButton.Name = "openSubFormButton";
42 this.openSubFormButton.Size = new System.Drawing.Size(98, 23);
43 this.openSubFormButton.TabIndex = 0;
44 this.openSubFormButton.Text = "Open Sub Form";
45 this.openSubFormButton.UseVisualStyleBackColor = true;
46 this.openSubFormButton.Click += new System.EventHandler(this.openSubFormButton_Click);
47 //
48 // resetSubFormAppIDButton
49 //
50 this.resetSubFormAppIDButton.Enabled = false;
51 this.resetSubFormAppIDButton.Location = new System.Drawing.Point(109, 31);
52 this.resetSubFormAppIDButton.Name = "resetSubFormAppIDButton";
53 this.resetSubFormAppIDButton.Size = new System.Drawing.Size(63, 23);
54 this.resetSubFormAppIDButton.TabIndex = 1;
55 this.resetSubFormAppIDButton.Text = "Reset";
56 this.resetSubFormAppIDButton.UseVisualStyleBackColor = true;
57 this.resetSubFormAppIDButton.Click += new System.EventHandler(this.resetSubFormAppIDButton_Click);
58 //
59 // setSubFormAppIDButton
60 //
61 this.setSubFormAppIDButton.Enabled = false;
62 this.setSubFormAppIDButton.Location = new System.Drawing.Point(24, 31);
63 this.setSubFormAppIDButton.Name = "setSubFormAppIDButton";
64 this.setSubFormAppIDButton.Size = new System.Drawing.Size(63, 23);
65 this.setSubFormAppIDButton.TabIndex = 3;
66 this.setSubFormAppIDButton.Text = "Set";
67 this.setSubFormAppIDButton.UseVisualStyleBackColor = true;
68 this.setSubFormAppIDButton.Click += new System.EventHandler(this.setSubFormAppIDButton_Click);
69 //
70 // groupBox1
71 //
72 this.groupBox1.Controls.Add(this.setSubFormAppIDButton);
73 this.groupBox1.Controls.Add(this.resetSubFormAppIDButton);
74 this.groupBox1.Location = new System.Drawing.Point(229, 12);
75 this.groupBox1.Name = "groupBox1";
76 this.groupBox1.Size = new System.Drawing.Size(200, 73);
77 this.groupBox1.TabIndex = 4;
78 this.groupBox1.TabStop = false;
79 this.groupBox1.Text = "Set/Reset SubForm AppID:";
80 //
81 // MainForm
82 //
83 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85 this.ClientSize = new System.Drawing.Size(477, 105);
86 this.Controls.Add(this.groupBox1);
87 this.Controls.Add(this.openSubFormButton);
88 this.Name = "MainForm";
89 this.Text = "MainForm";
90 this.Load += new System.EventHandler(this.MainForm_Load);
91 this.groupBox1.ResumeLayout(false);
92 this.ResumeLayout(false);
96 #endregion
98 private System.Windows.Forms.Button openSubFormButton;
99 private System.Windows.Forms.Button resetSubFormAppIDButton;
100 private System.Windows.Forms.Button setSubFormAppIDButton;
101 private System.Windows.Forms.GroupBox groupBox1;